home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsgc.h < prev    next >
C/C++ Source or Header  |  1997-04-22  |  3KB  |  84 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsgc.h */
  20. /* Library-level interface to garbage collector */
  21.  
  22. /*
  23.  * This API is not strictly at the library level, since it references
  24.  * gs_ref_memory_t and the 4 PostScript memory spaces; however, the former
  25.  * concept already leaks into the library's standard allocator, and the
  26.  * latter is relatively small and harmless.
  27.  */
  28.  
  29. #ifndef gsgc_INCLUDED
  30. #  define gsgc_INCLUDED
  31.  
  32. /*
  33.  * Define the VM space numbers, in increasing order of dynamism.  Pointers
  34.  * from a higher-numbered space to the same or a lower-numbered space are
  35.  * always allowed, but not vice versa.  Foreign space (the most static) is
  36.  * internal, the rest are visible to the programmer; the index of foreign
  37.  * space must be 0, so that we don't have to set any space bits in scalar
  38.  * refs (PostScript objects).
  39.  */
  40. typedef enum {
  41.     i_vm_foreign = 0,    /* must be 0 */
  42.     i_vm_system,
  43.     i_vm_global,
  44.     i_vm_local,
  45.     i_vm_max = i_vm_local
  46. } i_vm_space;
  47.  
  48. /* Define an array of allocators indexed by space. */
  49. #ifndef gs_ref_memory_DEFINED
  50. #  define gs_ref_memory_DEFINED
  51. typedef struct gs_ref_memory_s gs_ref_memory_t;
  52. #endif
  53. /*
  54.  * r_space_bits is only defined in PostScript interpreters, but if it is
  55.  * defined, we want to make sure it's 2.
  56.  */
  57. #ifdef r_space_bits
  58. #  if r_space_bits != 2
  59. Error_r_space_bits_is_not_2;
  60. #  endif
  61. #endif
  62. typedef union vm_spaces_s {
  63.     gs_ref_memory_t *indexed[4 /*1 << r_space_bits*/];
  64.     struct _ssn {
  65.       gs_ref_memory_t *foreign;
  66.       gs_ref_memory_t *system;
  67.       gs_ref_memory_t *global;
  68.       gs_ref_memory_t *local;
  69.     } named;
  70. } vm_spaces;
  71. /* By convention, the vm_spaces member of structures, and local variables */
  72. /* of type vm_spaces, are named spaces. */
  73. #define space_foreign spaces.named.foreign
  74. #define space_system spaces.named.system
  75. #define space_global spaces.named.global
  76. #define space_local spaces.named.local
  77.  
  78. /*
  79.  * Define the top-level entry to the garbage collector.
  80.  */
  81. void gs_reclaim(P2(vm_spaces *pspaces, bool global));
  82.  
  83. #endif                    /* gsgc_INCLUDED */
  84.